summaryrefslogtreecommitdiffstats
path: root/src/input_common/helpers/joycon_protocol/ringcon.h
blob: 0c25de23eed64084bea2dc17a6b729925bbdee2d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

// Based on dkms-hid-nintendo implementation, CTCaer joycon toolkit and dekuNukem reverse
// engineering https://github.com/nicman23/dkms-hid-nintendo/blob/master/src/hid-nintendo.c
// https://github.com/CTCaer/jc_toolkit
// https://github.com/dekuNukem/Nintendo_Switch_Reverse_Engineering

#pragma once

#include <vector>

#include "input_common/helpers/joycon_protocol/common_protocol.h"
#include "input_common/helpers/joycon_protocol/joycon_types.h"

namespace InputCommon::Joycon {

class RingConProtocol final : private JoyconCommonProtocol {
public:
    RingConProtocol(std::shared_ptr<JoyconHandle> handle);

    DriverResult EnableRingCon();

    DriverResult DisableRingCon();

    DriverResult StartRingconPolling();

    bool IsEnabled();

private:
    DriverResult IsRingConnected(bool& is_connected);

    DriverResult ConfigureRing();

    bool is_enabled{};
};

} // namespace InputCommon::Joycon